2025.7.24 数値のアンダースコア
python3.6 以降の機能として、数字の中にアンダースコアを記述することで読みやすくすることができる。
code:p.py
print(10_000.)
for i in range(1_0):
print(i)